.new-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: transparent;
  border-radius: 20px;
}

.donate-card {
  background: #fffde6;
  border-radius: 24px;
  box-shadow: 0 3px 24px rgba(0,0,0,0.07);
  padding: 32px 32px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 800;
}

.accent { color: #e75252; }
.donate-flex {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;


.donate-left, .donate-right {
  padding: px 20px;
  border-radius: 18px;
}

.donate-left {
  background: #dbffe7;
  flex: 1.2;
  min-width: 300px;
}

.donate-right {
  background: #e4ffe8;
  flex: 1;
  min-width: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.green { color: #148115; }
.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  background: #fff;
  border: 2px solid #0b8607;
  border-radius: 38px;
  overflow: hidden;
  height: 54px;
}

.input-icon {
  background: #168c19;
  color: #fff;
  font-size: 1.5rem;
  height: 100%;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.3rem;
  padding: 0 16px;
  height: 100%;
}

.amount-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.amt-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #168c19;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
  border: 2px solid #d0ffd3;
}
.amt-btn.active,
.amt-btn:focus {
  background: #168c19;
  color: #fff;
  border-color: #168c19;
}
.donate-btn {
  background: #168c19;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(22,140,25,0.1);
}

.bank-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.bank-details li {
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.bank-details strong {
  color: #4274f2;
}
.qr-container {
  background: linear-gradient(90deg, #672c87 60%, #fff 40%);
  border-radius: 15px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-code {
  width: 200px;
  height: 200px;
  background: #fafafa;
  border-radius: 8px;
  margin: 16px auto;
  display: block;
}
.upi-apps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.upi-apps img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .donate-flex {
    flex-direction: column;
    gap: 22px;
  }
  .container {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .donate-card {
    padding: 14px 3vw;
    border-radius: 14px;
  }
  .donate-left, .donate-right {
    padding: 9px 7px;
    border-radius: 10px;
  }
}
body, h1 ,h2 ,h3, h4, p, span, a, label, li, button, input, strong, .donate-btn, .amt-btn {
  font-weight: bold !important;
}

